bitkeeper revision 1.1159.258.114 (427dcfb8HaNsKoCdNjOQCEM_vCEWTA)
authorlists-xen@pimb.org[kaf24] <lists-xen@pimb.org[kaf24]>
Sun, 8 May 2005 08:37:12 +0000 (08:37 +0000)
committerlists-xen@pimb.org[kaf24] <lists-xen@pimb.org[kaf24]>
Sun, 8 May 2005 08:37:12 +0000 (08:37 +0000)
[PATCH] [PATCH] Increase size of sxpr parser input buffer

Increase the size of the sxpr parser input buffer from 1024 characters, which
isn't long enough to hold larger domain configurations (xfrd transmits the
entire domain config sxpr as a single atom inside of another sxpr).

Signed-off-by: Jody Belka <knew (dash) xen (at) pimb (dot) org>
BitKeeper/etc/logging_ok
tools/libxutil/sxpr_parser.h

index 90b505243e02261041433a54d838e0daaee047f4..e119b60bfa138fd5a55b6c1b9bf9dfef083b7129 100644 (file)
@@ -41,6 +41,7 @@ kaf24@striker.cl.cam.ac.uk
 kaf24@viper.(none)
 katzj@redhat.com
 laudney@eclipse.(none)
+lists-xen@pimb.org
 lynx@idefix.cl.cam.ac.uk
 mafetter@fleming.research
 mark@maw48.kings.cam.ac.uk
index 0736fd3d40482d3e6017ee7cfac3ddaa30cf8a75..0a3fde55fda1aa7f5895691d200ff765bd77d5df 100644 (file)
@@ -28,7 +28,7 @@
 /** Size of a parser input buffer.
  * Tokens read must fit into this size (including trailing null).
  */
-#define PARSER_BUF_SIZE 1024
+#define PARSER_BUF_SIZE 4096
 
 struct Parser;
 typedef int ParserStateFn(struct Parser *, char c);